home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 2
/
Wayzata's Best of Shareware 2.0 (Windows) (Wayzata Technology)(7112)(1994).bin
/
pc
/
dos
/
programg
/
zi_123
/
runme.bat
< prev
next >
Wrap
DOS Batch File
|
1992-08-19
|
945b
|
30 lines
@echo off
echo *
echo * To get you started, this batch file will compile the five demonstration
echo * scripts into EXE files, so you can see what Z/Install can do.
echo *
echo * If you want to exit, press CTRL-C now, otherwise hit any key to continue.
echo *
pause>nul
zinstall demo
zinstall barmenu
zinstall dialog
zinstall gosub
zinstall command
cls
echo *
echo * Compile is complete! The following EXE files may now be run:
echo *
echo * DEMO.EXE - A sample full-fledged installation program
echo * BARMENU.EXE - Demonstrates the use of bar menus
echo * DIALOG.EXE - Demonstrates the use of dialogs and input
echo * COMMAND.EXE - Uses command-line arguments
echo * GOSUB.EXE - Demonstrates the use of GoSUB commands
echo *
echo * The source for each of these EXE files can be found in their
echo * respective .ZSL files. For example, the source for DEMO.EXE is
echo * DEMO.ZSL.
echo *
echo.